home *** CD-ROM | disk | FTP | other *** search
- #
- # Test class for [incr Tcl] test suite
- # ----------------------------------------------------------------------
- # AUTHOR: Michael J. McLennan Phone: (215)770-2842
- # AT&T Bell Laboratories E-mail: aluxpo!mmc@att.com
- #
- # SCCS: @(#)Baz.tcl 1.1 (9/9/93)
- # ----------------------------------------------------------------------
- # Copyright (c) 1993 AT&T All Rights Reserved
- # ======================================================================
-
- itcl_class Baz {
- #
- # Avoid defining constructor/destructor
- #
-
- #
- # Generic method for doing something in "Baz" interp
- #
- method do {cmds} {
- return "Baz says '[eval $cmds]'"
- }
- }
-